home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / docs / pascsrc / goodform.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1988-01-15  |  435 b   |  17 lines

  1. program Good_Programming_Style;
  2.  
  3. begin
  4.  
  5.    Write('Programming style ');
  6.    Write                  ('is a matter of ');
  7.    Writeln                               ('personal choice');
  8.  
  9.    Write('Each person ');
  10.    Write            ('can choose ');
  11.    Writeln                     ('his own style');
  12.  
  13.    Write('He can be ');
  14.    Write          ('very clear, or ');
  15.    Writeln                       ('extremely messy');
  16. end.
  17.